home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / lib / ibus-table / ibus-engine-table
Text File  |  2009-07-30  |  1KB  |  43 lines

  1. #!/bin/sh
  2. # vim:set et sts=4 sw=4
  3. #
  4. # ibus-table - The Tables engine for IBus
  5. #
  6. # Copyright (c) 2008-2009 Yu Yuwei <acevery@gmail.com>
  7. #
  8. # This library is free software; you can redistribute it and/or
  9. # modify it under the terms of the GNU Lesser General Public
  10. # License as published by the Free Software Foundation; either
  11. # version 2.1 of the License, or (at your option) any later version.
  12. #
  13. # This library is distributed in the hope that it will be useful,
  14. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  16. # Lesser General Public License for more details.
  17. #
  18. # You should have received a copy of the GNU Lesser General Public
  19. # License along with this library; if not, write to the Free Software
  20. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  21. #
  22.  
  23. prefix=/usr
  24. datarootdir=${prefix}/share
  25. datadir=${datarootdir}
  26. export IBUS_TABLE_LOCATION=${prefix}/share/ibus-table
  27.  
  28. for arg in $@; do
  29.     case $arg in
  30.     --xml)
  31.         exec python ${prefix}/share/ibus-table/engine/main.py --xml;;
  32.     --help | -h)
  33.         exec python ${prefix}/share/ibus-table/engine/main.py $@;;
  34.     esac
  35. done
  36.  
  37. # first running speedmeter as a daemon
  38. python ${prefix}/share/ibus-table/engine/speedmeter.py -d
  39.  
  40. # then start our IME
  41. exec python ${prefix}/share/ibus-table/engine/main.py $@
  42.  
  43.